class Tripler {
}
 
class SolarSystem {
}
 
function prn(o) { console.log(o); }
 
function prn(o) {
	console.log(o);
}
 
function prn(anObject) {
	let safeValue = anObject;
	if (safeValue === undefined) safeValue = '*undefined*';
	if (safeValue === null) safeValue = '*null*';
	console.this.log(safeValue.toString());
}